home *** CD-ROM | disk | FTP | other *** search
/ Champak 141 / (Vol 141) Oct 17 2011.iso / Games / global-one-water.swf / scripts / __Packages / KidHead.as < prev    next >
Encoding:
Text File  |  2011-10-17  |  324 b   |  14 lines

  1. class KidHead extends MovieClip
  2. {
  3.    var red;
  4.    function KidHead()
  5.    {
  6.       super();
  7.       this.setTiredness(1 - this._parent._parent.kid.stamina / this._parent._parent.kid.maxStamina);
  8.    }
  9.    function setTiredness(t)
  10.    {
  11.       this.red.gotoAndStop(Math.floor(t * (this.red._totalframes - 1)) + 1);
  12.    }
  13. }
  14.